home *** CD-ROM | disk | FTP | other *** search
/ Yellows - Privacy (Deluxe) / Akira Gomi Photographs - Yellows: Privacy (Deluxe) - Disc 1.iso / footage / 16.dxr / 00048.ls < prev    next >
Encoding:
Text File  |  1996-07-10  |  515 b   |  28 lines

  1. global foreframe, textscroll
  2.  
  3. on mouseDown
  4.   button()
  5. end
  6.  
  7. on mouseUp
  8.   if rollOver(clickOn()) then
  9.     if textscroll = 1 then
  10.       repeat with i = 1 to 10
  11.         puppetSprite(i, 0)
  12.       end repeat
  13.       repeat with i = 19 to 30
  14.         puppetSprite(i, 0)
  15.       end repeat
  16.     else
  17.       repeat with i = 1 to 4
  18.         puppetSprite(i, 0)
  19.       end repeat
  20.       repeat with i = 19 to 20
  21.         puppetSprite(i, 0)
  22.       end repeat
  23.     end if
  24.     go(foreframe)
  25.     set the keyDownScript to "checkkey"
  26.   end if
  27. end
  28.